[INFO] cloning repository https://github.com/muhtutorials/rsqlite
[INFO] running `Command { std: "git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "clone" "--bare" "https://github.com/muhtutorials/rsqlite" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fmuhtutorials%2Frsqlite", kill_on_drop: false }`
[INFO] [stderr] Cloning into bare repository '/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fmuhtutorials%2Frsqlite'...
[INFO] running `Command { std: "git" "rev-parse" "HEAD", kill_on_drop: false }`
[INFO] [stdout] d95b50d369a98e0bf7c8a70b8c7334fcd004a1a0
[INFO] fixing muhtutorials/rsqlite against try#622891a4e29178280638a6b63a8908bde2c0c854+cargoflags=-Zfix-edition=start=2015 for pr-157817-2
[INFO] running `Command { std: "git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fmuhtutorials%2Frsqlite" "/workspace/builds/worker-6-tc1/source", kill_on_drop: false }`
[INFO] [stderr] Cloning into '/workspace/builds/worker-6-tc1/source'...
[INFO] [stderr] done.
[INFO] started tweaking git repo https://github.com/muhtutorials/rsqlite
[INFO] finished tweaking git repo https://github.com/muhtutorials/rsqlite
[INFO] tweaked toml for git repo https://github.com/muhtutorials/rsqlite written to /workspace/builds/worker-6-tc1/source/Cargo.toml
[INFO] validating manifest of git repo https://github.com/muhtutorials/rsqlite on toolchain 622891a4e29178280638a6b63a8908bde2c0c854
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+622891a4e29178280638a6b63a8908bde2c0c854" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate git repo https://github.com/muhtutorials/rsqlite already has a lockfile, it will not be regenerated
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+622891a4e29178280638a6b63a8908bde2c0c854" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-6-tc1/source:/opt/rustwide/workdir:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-6-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-m" "1610612736" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:3a6becf2bc8dde7f3fa57ede90e4f284e72d296796fc446bbb1e2c7cc0530151" "sleep" "infinity", kill_on_drop: false }`
[INFO] [stdout] f5efb9f1ac60b548a871590ffd1ed3cda2615bf5df4449998332934c71545d20
[INFO] running `Command { std: "docker" "start" "f5efb9f1ac60b548a871590ffd1ed3cda2615bf5df4449998332934c71545d20", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-w" "/opt/rustwide/workdir" "--user" "0:0" "f5efb9f1ac60b548a871590ffd1ed3cda2615bf5df4449998332934c71545d20" "/opt/rustwide/cargo-home/bin/cargo" "+622891a4e29178280638a6b63a8908bde2c0c854" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "f5efb9f1ac60b548a871590ffd1ed3cda2615bf5df4449998332934c71545d20", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=" "-e" "RUSTDOCFLAGS=" "-w" "/opt/rustwide/workdir" "--user" "0:0" "f5efb9f1ac60b548a871590ffd1ed3cda2615bf5df4449998332934c71545d20" "/opt/rustwide/cargo-home/bin/cargo" "+622891a4e29178280638a6b63a8908bde2c0c854" "fix" "--allow-no-vcs" "--allow-dirty" "--frozen" "--all" "--all-targets" "--message-format=json" "-Zfix-edition=start=2015", kill_on_drop: false }`
[INFO] [stderr]     Checking rsqlite v0.1.0 (/opt/rustwide/workdir)
[INFO] [stdout] error[E0106]: missing lifetime specifier
[INFO] [stdout]    --> src/parser.rs:152:65
[INFO] [stdout]     |
[INFO] [stdout] 152 | pub fn parse_create_table<'a>(p: &mut Parser<'a>) -> Result<'a, CreateTable> {
[INFO] [stdout]     |                                  ---------------                ^^^^^^^^^^^ expected named lifetime parameter
[INFO] [stdout]     |
[INFO] [stdout]     = help: this function's return type contains a borrowed value, but the signature does not say which one of `p`'s 2 lifetimes it is borrowed from
[INFO] [stdout] help: consider using the `'a` lifetime
[INFO] [stdout]     |
[INFO] [stdout] 152 | pub fn parse_create_table<'a>(p: &mut Parser<'a>) -> Result<'a, CreateTable<'a>> {
[INFO] [stdout]     |                                                                            ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0106]: missing lifetime specifier
[INFO] [stdout]    --> src/parser.rs:152:65
[INFO] [stdout]     |
[INFO] [stdout] 152 | pub fn parse_create_table<'a>(p: &mut Parser<'a>) -> Result<'a, CreateTable> {
[INFO] [stdout]     |                                  ---------------                ^^^^^^^^^^^ expected named lifetime parameter
[INFO] [stdout]     |
[INFO] [stdout]     = help: this function's return type contains a borrowed value, but the signature does not say which one of `p`'s 2 lifetimes it is borrowed from
[INFO] [stdout] help: consider using the `'a` lifetime
[INFO] [stdout]     |
[INFO] [stdout] 152 | pub fn parse_create_table<'a>(p: &mut Parser<'a>) -> Result<'a, CreateTable<'a>> {
[INFO] [stdout]     |                                                                            ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0425]: cannot find function `parse_insert` in this scope
[INFO] [stdout]    --> src/parser.rs:111:26
[INFO] [stdout]     |
[INFO] [stdout] 111 |             let insert = parse_insert(p)?;
[INFO] [stdout]     |                          ^^^^^^^^^^^^
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/utils.rs:199:1
[INFO] [stdout]     |
[INFO] [stdout] 199 | pub fn parse_integer(input: &[u8]) -> (bool, ParseIntegerResult) {
[INFO] [stdout]     | ---------------------------------------------------------------- similarly named function `parse_integer` defined here
[INFO] [stdout]     |
[INFO] [stdout] help: a function with a similar name exists
[INFO] [stdout]     |
[INFO] [stdout] 111 -             let insert = parse_insert(p)?;
[INFO] [stdout] 111 +             let insert = parse_integer(p)?;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0425]: cannot find function `parse_delete` in this scope
[INFO] [stdout]    --> src/parser.rs:115:26
[INFO] [stdout]     |
[INFO] [stdout] 115 |             let delete = parse_delete(p)?;
[INFO] [stdout]     |                          ^^^^^^^^^^^^
[INFO] [stdout] ...
[INFO] [stdout] 307 | pub fn parse_select<'a>(p: &mut Parser<'a>) -> Result<'a, Select<'a>> {
[INFO] [stdout]     | --------------------------------------------------------------------- similarly named function `parse_select` defined here
[INFO] [stdout]     |
[INFO] [stdout] help: a function with a similar name exists
[INFO] [stdout]     |
[INFO] [stdout] 115 -             let delete = parse_delete(p)?;
[INFO] [stdout] 115 +             let delete = parse_select(p)?;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0308]: mismatched types
[INFO] [stdout]    --> src/parser.rs:250:46
[INFO] [stdout]     |
[INFO] [stdout] 250 |     if matches!(p.peek(), Some(Token::Plus | Some(Token::Minus))) {
[INFO] [stdout]     |                 --------                     ^^^^^^^^^^^^^^^^^^ expected `Token<'_>`, found `Option<_>`
[INFO] [stdout]     |                 |
[INFO] [stdout]     |                 this expression has type `Option<&Token<'_>>`
[INFO] [stdout]     |
[INFO] [stdout]     = note: expected enum `Token<'_>`
[INFO] [stdout]                found enum `Option<_>`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0308]: mismatched types
[INFO] [stdout]    --> src/parser.rs:253:53
[INFO] [stdout]     |
[INFO] [stdout] 253 |     if !matches!(p.peek(), Some(Token::Integer(_) | Some(Token::Float(_)))) {
[INFO] [stdout]     |                  --------                           ^^^^^^^^^^^^^^^^^^^^^ expected `Token<'_>`, found `Option<_>`
[INFO] [stdout]     |                  |
[INFO] [stdout]     |                  this expression has type `Option<&Token<'_>>`
[INFO] [stdout]     |
[INFO] [stdout]     = note: expected enum `Token<'_>`
[INFO] [stdout]                found enum `Option<_>`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0425]: cannot find function `parse_insert` in this scope
[INFO] [stdout]    --> src/parser.rs:111:26
[INFO] [stdout]     |
[INFO] [stdout] 111 |             let insert = parse_insert(p)?;
[INFO] [stdout]     |                          ^^^^^^^^^^^^
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/utils.rs:199:1
[INFO] [stdout]     |
[INFO] [stdout] 199 | pub fn parse_integer(input: &[u8]) -> (bool, ParseIntegerResult) {
[INFO] [stdout]     | ---------------------------------------------------------------- similarly named function `parse_integer` defined here
[INFO] [stdout]     |
[INFO] [stdout] help: a function with a similar name exists
[INFO] [stdout]     |
[INFO] [stdout] 111 -             let insert = parse_insert(p)?;
[INFO] [stdout] 111 +             let insert = parse_integer(p)?;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0425]: cannot find function `parse_delete` in this scope
[INFO] [stdout]    --> src/parser.rs:115:26
[INFO] [stdout]     |
[INFO] [stdout] 115 |             let delete = parse_delete(p)?;
[INFO] [stdout]     |                          ^^^^^^^^^^^^
[INFO] [stdout] ...
[INFO] [stdout] 307 | pub fn parse_select<'a>(p: &mut Parser<'a>) -> Result<'a, Select<'a>> {
[INFO] [stdout]     | --------------------------------------------------------------------- similarly named function `parse_select` defined here
[INFO] [stdout]     |
[INFO] [stdout] help: a function with a similar name exists
[INFO] [stdout]     |
[INFO] [stdout] 115 -             let delete = parse_delete(p)?;
[INFO] [stdout] 115 +             let delete = parse_select(p)?;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0308]: mismatched types
[INFO] [stdout]    --> src/parser.rs:250:46
[INFO] [stdout]     |
[INFO] [stdout] 250 |     if matches!(p.peek(), Some(Token::Plus | Some(Token::Minus))) {
[INFO] [stdout]     |                 --------                     ^^^^^^^^^^^^^^^^^^ expected `Token<'_>`, found `Option<_>`
[INFO] [stdout]     |                 |
[INFO] [stdout]     |                 this expression has type `Option<&Token<'_>>`
[INFO] [stdout]     |
[INFO] [stdout]     = note: expected enum `Token<'_>`
[INFO] [stdout]                found enum `Option<_>`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0308]: mismatched types
[INFO] [stdout]    --> src/parser.rs:253:53
[INFO] [stdout]     |
[INFO] [stdout] 253 |     if !matches!(p.peek(), Some(Token::Integer(_) | Some(Token::Float(_)))) {
[INFO] [stdout]     |                  --------                           ^^^^^^^^^^^^^^^^^^^^^ expected `Token<'_>`, found `Option<_>`
[INFO] [stdout]     |                  |
[INFO] [stdout]     |                  this expression has type `Option<&Token<'_>>`
[INFO] [stdout]     |
[INFO] [stdout]     = note: expected enum `Token<'_>`
[INFO] [stdout]                found enum `Option<_>`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unused variable: `result_column`
[INFO] [stdout]    --> src/parser.rs:312:9
[INFO] [stdout]     |
[INFO] [stdout] 312 |     let result_column = parse_result_column(p)?;
[INFO] [stdout]     |         ^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_result_column`
[INFO] [stdout]     |
[INFO] [stdout]     = note: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unused variable: `expr`
[INFO] [stdout]    --> src/parser.rs:358:9
[INFO] [stdout]     |
[INFO] [stdout] 358 |     let expr = parse_expr(p)?;
[INFO] [stdout]     |         ^^^^ help: if this is intentional, prefix it with an underscore: `_expr`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: variable does not need to be mutable
[INFO] [stdout]    --> src/parser.rs:419:9
[INFO] [stdout]     |
[INFO] [stdout] 419 |     let mut expr = parse_expr_compare(p)?;
[INFO] [stdout]     |         ----^^^^
[INFO] [stdout]     |         |
[INFO] [stdout]     |         help: remove this `mut`
[INFO] [stdout]     |
[INFO] [stdout]     = note: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unused variable: `expr`
[INFO] [stdout]    --> src/parser.rs:419:9
[INFO] [stdout]     |
[INFO] [stdout] 419 |     let mut expr = parse_expr_compare(p)?;
[INFO] [stdout]     |         ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_expr`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: variable does not need to be mutable
[INFO] [stdout]    --> src/parser.rs:424:9
[INFO] [stdout]     |
[INFO] [stdout] 424 |     let mut expr = parse_expr_concat(p)?;
[INFO] [stdout]     |         ----^^^^
[INFO] [stdout]     |         |
[INFO] [stdout]     |         help: remove this `mut`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unused variable: `expr`
[INFO] [stdout]    --> src/parser.rs:424:9
[INFO] [stdout]     |
[INFO] [stdout] 424 |     let mut expr = parse_expr_concat(p)?;
[INFO] [stdout]     |         ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_expr`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: variable does not need to be mutable
[INFO] [stdout]    --> src/parser.rs:429:9
[INFO] [stdout]     |
[INFO] [stdout] 429 |     let mut expr = parse_expr_collate(p)?;
[INFO] [stdout]     |         ----^^^^
[INFO] [stdout]     |         |
[INFO] [stdout]     |         help: remove this `mut`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unused variable: `expr`
[INFO] [stdout]    --> src/parser.rs:429:9
[INFO] [stdout]     |
[INFO] [stdout] 429 |     let mut expr = parse_expr_collate(p)?;
[INFO] [stdout]     |         ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_expr`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: variable does not need to be mutable
[INFO] [stdout]    --> src/parser.rs:434:9
[INFO] [stdout]     |
[INFO] [stdout] 434 |     let mut expr = parse_expr_unary(p)?;
[INFO] [stdout]     |         ----^^^^
[INFO] [stdout]     |         |
[INFO] [stdout]     |         help: remove this `mut`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unused variable: `expr`
[INFO] [stdout]    --> src/parser.rs:434:9
[INFO] [stdout]     |
[INFO] [stdout] 434 |     let mut expr = parse_expr_unary(p)?;
[INFO] [stdout]     |         ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_expr`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unused variable: `result_column`
[INFO] [stdout]    --> src/parser.rs:312:9
[INFO] [stdout]     |
[INFO] [stdout] 312 |     let result_column = parse_result_column(p)?;
[INFO] [stdout]     |         ^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_result_column`
[INFO] [stdout]     |
[INFO] [stdout]     = note: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unused variable: `expr`
[INFO] [stdout]    --> src/parser.rs:358:9
[INFO] [stdout]     |
[INFO] [stdout] 358 |     let expr = parse_expr(p)?;
[INFO] [stdout]     |         ^^^^ help: if this is intentional, prefix it with an underscore: `_expr`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: variable does not need to be mutable
[INFO] [stdout]    --> src/parser.rs:419:9
[INFO] [stdout]     |
[INFO] [stdout] 419 |     let mut expr = parse_expr_compare(p)?;
[INFO] [stdout]     |         ----^^^^
[INFO] [stdout]     |         |
[INFO] [stdout]     |         help: remove this `mut`
[INFO] [stdout]     |
[INFO] [stdout]     = note: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unused variable: `expr`
[INFO] [stdout]    --> src/parser.rs:419:9
[INFO] [stdout]     |
[INFO] [stdout] 419 |     let mut expr = parse_expr_compare(p)?;
[INFO] [stdout]     |         ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_expr`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: variable does not need to be mutable
[INFO] [stdout]    --> src/parser.rs:424:9
[INFO] [stdout]     |
[INFO] [stdout] 424 |     let mut expr = parse_expr_concat(p)?;
[INFO] [stdout]     |         ----^^^^
[INFO] [stdout]     |         |
[INFO] [stdout]     |         help: remove this `mut`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unused variable: `expr`
[INFO] [stdout]    --> src/parser.rs:424:9
[INFO] [stdout]     |
[INFO] [stdout] 424 |     let mut expr = parse_expr_concat(p)?;
[INFO] [stdout]     |         ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_expr`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: variable does not need to be mutable
[INFO] [stdout]    --> src/parser.rs:429:9
[INFO] [stdout]     |
[INFO] [stdout] 429 |     let mut expr = parse_expr_collate(p)?;
[INFO] [stdout]     |         ----^^^^
[INFO] [stdout]     |         |
[INFO] [stdout]     |         help: remove this `mut`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unused variable: `expr`
[INFO] [stdout]    --> src/parser.rs:429:9
[INFO] [stdout]     |
[INFO] [stdout] 429 |     let mut expr = parse_expr_collate(p)?;
[INFO] [stdout]     |         ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_expr`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: variable does not need to be mutable
[INFO] [stdout]    --> src/parser.rs:434:9
[INFO] [stdout]     |
[INFO] [stdout] 434 |     let mut expr = parse_expr_unary(p)?;
[INFO] [stdout]     |         ----^^^^
[INFO] [stdout]     |         |
[INFO] [stdout]     |         help: remove this `mut`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unused variable: `expr`
[INFO] [stdout]    --> src/parser.rs:434:9
[INFO] [stdout]     |
[INFO] [stdout] 434 |     let mut expr = parse_expr_unary(p)?;
[INFO] [stdout]     |         ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_expr`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] Some errors have detailed explanations: E0106, E0308, E0425.
[INFO] [stdout] 
[INFO] [stdout] For more information about an error, try `rustc --explain E0106`.
[INFO] [stdout] 
[INFO] [stderr] error: could not compile `rsqlite` (bin "rsqlite") due to 5 previous errors; 10 warnings emitted
[INFO] [stderr] warning: build failed, waiting for other jobs to finish...
[INFO] [stdout] Some errors have detailed explanations: E0106, E0308, E0425.
[INFO] [stdout] 
[INFO] [stdout] For more information about an error, try `rustc --explain E0106`.
[INFO] [stdout] 
[INFO] [stderr] error: could not compile `rsqlite` (bin "rsqlite" test) due to 5 previous errors; 10 warnings emitted
[INFO] running `Command { std: "docker" "inspect" "f5efb9f1ac60b548a871590ffd1ed3cda2615bf5df4449998332934c71545d20", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "f5efb9f1ac60b548a871590ffd1ed3cda2615bf5df4449998332934c71545d20", kill_on_drop: false }`
[INFO] [stdout] f5efb9f1ac60b548a871590ffd1ed3cda2615bf5df4449998332934c71545d20
